Class350.createLayerAt(Component component,Dockable dockable){ JPanel panel = new JPanel( new GridLayout( 1, 1 )); panel.add( component ); panel.setOpaque( false ); }
Class160.createCenterPanel(){ JPanel panel = new JPanel(new GridLayout(2, 1)); panel.add(myModuleScope); }
Class400.buildPanel()#0{ JPanel panel = new JPanel(new GridLayout(0, 1)); panel.add(this.maxMemoryLabel); }
Class730.wrapComponentInPanel(Component c){ JPanel wrapperPanel = new JPanel(new GridLayout(1, 1)); wrapperPanel.setOpaque(false); wrapperPanel.add(c); }
Class470.createComponent(){ final JPanel panel = new JPanel(new GridLayout(myFields.size(), 1)); for (BeanField field: myFields) { panel.add(field.getComponent()); } }